home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 24
/
Amiga Format AFCD24 (Feb 1998, Issue 108).iso
/
-in_the_mag-
/
emulation
/
amiga
/
uae-0.7.0b2
/
src
/
od-generic
/
joystick.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-20
|
463b
|
35 lines
/*
* UAE - The Un*x Amiga Emulator
*
* Joystick emulation stubs
*
* Copyright 1997 Bernd Schmidt
*/
#include "sysconfig.h"
#include "sysdeps.h"
#include "config.h"
#include "options.h"
#include "memory.h"
#include "custom.h"
#include "joystick.h"
int nr_joysticks;
void read_joystick(int nr, unsigned int *dir, int *button)
{
*dir = 0;
*button = 0;
}
void init_joystick(void)
{
nr_joysticks = 0;
}
void close_joystick(void)
{
}